Documentation for Users  2.0.2
Perception Toolbox for Virtual Reality (PTVR) Manual
Counter.py
Go to the documentation of this file.
1 import os
2 import subprocess
3 import sys
4 from PTVR.Stimuli.Utils import MetaData
5 
6 
8  def __init__(self):
9  self.countercounter = 0
10 
11  def UpdateCounter(self):
12  self.countercounter += 1
13 
14 def SetId():
15  counter = 1
16  Counting().UpdateCounter()
def UpdateCounter(self)
Definition: Counter.py:11
def __init__(self)
Definition: Counter.py:8
def SetId()
Definition: Counter.py:14